como hago para optimizar mi menu,

francisco posted 22nd of March 2008 in Community Voice. 2 comments.
pregunto esto por que dia a dia , le instalo excelentes componentes, pero se me pierden, ya que solamente tengo una linea prinicipal de menu, como hago para doblarla o triplicar esta linea, la necesito urgente.

gracias
 
Comments
·Oldest
·Top
Please login to post a comment.
rafaxgx
Hola Francisco, yo lo encontré en expertzzz.com (aunque la búsqueda ahí es tediosa). El archivo se llama "Top Menu Optimization" y te pego en el siguiente post el contenido del mismo. Hasta pronto.
rafaxgx
Top Menu Optimization.
Allows you to split Top menu items in several lines (for default Dolphin 6.x template) if they can't fit your site area.
This modification was designed specially for Rayz widgets with Dolphin better compatibility. You can get these widgets for your site at http://www.expertzzz.com/Downloadz/home/author/Rayz/.

To install the modification perform steps from 1 to 5.

1. Edit your templates/tmpl_uni/css/general.css:
a. Find in line 212 selector .topMenu ànd set 'position' see more to 'relative'. You should get following code:

.topMenu
{
position:relative;
top:0px;
left:-11px;
width:775px;
}

b. Find in 312 line selector .hiddenMenu and set 'position' to 'relative' and 'top' to '0px' value. You should get following:

.hiddenMenu
{
position:relative;
top:0px;
left:-10px;
z-index:101;
}

2. Edit your templates/tmpl_uni/scripts/BxTemlMenu.php. Find following code at line 45:

$ret .= TopMenuDesign( $memberID );

Replace it with this code:

$ret .= TopMenuDesign( getParam('topmenu_items_perline'), '</tr><tr>' );


3. Edit your inc/menu.inc.php. Find following code at line 248:

function TopMenuDesign()

Replace it with this code:

function TopMenuDesign( $iDivide, $sDivider )

Find at line 300 following code:

$ret .= $oTemplMenu -> getTopMenuItem( _t( $aItem['Caption'] ), $aItem['Link'], $aItem['Target'], $aItem['Onclick'], ( $iItemID == $aMenuInfo['currentTop'] ), $iItemID );

Add the following code after it:

if( !( ++$iCount % $iDivide ) )
{
$ret .= $sDivider;
$iCount = 0;
}

4. Execute the following query in your database management system (phpmyadmin):

INSERT INTO `GlParams` VALUES ('topmenu_items_perline', '10', 1, 'Number of items per line in top menu', 'digit', 'return (int)$arg0 > 0;', 'Number of items must be greater than zero', -1);


5. Go to your Dolphin admin panel - Settings - Advanced Settings. You can change the number of top menu items per line by changing "Number of items per line in top menu" setting value.
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.
PET:0.046139001846313